Phillies Game
Orioles Game
import numpy as np import matplotlib.pyplot as plt x = [1,2,3,4,5,6,7,8,9,10] y = [1,4,9,16,25,36,49,64,81,100] plt.scatter(x,y, color='#68A2B9') plt.xlabel("X") plt.ylabel("X-squared") plt.show()
(Dhar 2013) (Wickham, Çetinkaya-Rundel, and Grolemund 2023)